home *** CD-ROM | disk | FTP | other *** search
/ Resource for Source: C/C++ / Resource for Source - C-C++.iso / codelib2 / v_02_01 / 2n01048a < prev    next >
Encoding:
Text File  |  1995-11-01  |  170 b   |  14 lines

  1.  
  2.  
  3.  
  4. function search(var s : string) : integer;
  5.     var
  6.         i : integer;
  7.     begin
  8.     i := MAX;
  9.     while (i > 0) and (s <> table[i]) do
  10.         i := i - 1;
  11.     search := i;
  12.     end;
  13.  
  14.